-
Re: How to review a column of dates and count the rows that are not a date
Try this instead =COUNTIFS({Hub Name}, [Hub Name]@row, {Node List - Node Activation Date}, NOT(ISDATE(@cell)))2 · -
Re: SUMIF for terms in multiple selection drop down
@kathryn.marini are you the blacked out the price? If so, you may want to do something a little different. My recommendation is to create summaries for the prices, so you can update the prices easier…1 · -
Re: Has anyone figured a workaround to show all pending approval requests?
@April Locke CIG You can do a filter saying if there is "Pending" on any approval columns, it displays.1 · -
Re: Formula - Helper Column Flag if Duplicate
@Estephania Here is an easier formula for you, =IF(COUNTIF([Employee ID]:[Employee ID],[Employee ID]@row)>1,1,0) Or you can throw in an iferror too =IFERROR( IF(COUNTIF([Employee ID]:[Employee ID]…1 · -
Re: Identifying Duplicates
Hello @CAS You will need a new column. You can use this formula, =COUNTIF([Invoice No]:[Invoice No],[Invoice No]@row)1 ·